home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-02 | 599 b | 26 lines | [TEXT/CWIE] |
- // =================================================================================
- //
- // CBaseCOM.h ©1996 Microsoft Corporation All rights reserved.
- //
- // =================================================================================
-
- #ifndef _H_CBaseCOM
- #define _H_CBaseCOM
- #pragma once
-
-
- class CBaseCOM:
- public virtual CRefCount,
- public IUnknown
- {
- public:
- CBaseCOM(void);
- virtual ~CBaseCOM(void);
-
- // *** IUnknown methods ***
- STDMETHOD (QueryInterface)(REFIID inRefID, void** outObj);
- STDMETHOD_ (Uint32, AddRef)(void);
- STDMETHOD_ (Uint32, Release)(void);
- };
-
- #endif